253. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2021-05-13 09:09:04 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

253.1 Files compared

#LocationFileLast Modified
1/Applications/Ampps/www/Porto 3.2.2/Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Newsletter/templatessubscribe_footer.phtml2016-05-09 12:05:02 +0000
2/Applications/Ampps/www/Porto v4.0.0/Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Newsletter/templatessubscribe_footer.phtml2016-05-09 12:05:02 +0000

253.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged182
Changed00
Inserted00
Removed00

253.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

253.4 Active regular expressions

No regular expressions were active.

253.5 Comparison detail

1 <?php 1 <?php
2 /** 2 /**
3  * Copyright © 2015 Magento. All rights reserved. 3  * Copyright © 2015 Magento. All rights reserved.
4  * See COPYING.txt for license details. 4  * See COPYING.txt for license details.
5  */ 5  */
6  6 
7 // @codingStandardsIgnoreFile 7 // @codingStandardsIgnoreFile
8  8 
9 ?> 9 ?>
10 <?php 10 <?php
11     $_helper = $this->helper('Smartwave\Porto\Helper\Data'); 11     $_helper = $this->helper('Smartwave\Porto\Helper\Data');
12      12     
13     $title = $_helper->getConfig('porto_settings/footer/footer_newsletter_title');//"Be the First to Know"; 13     $title = $_helper->getConfig('porto_settings/footer/footer_newsletter_title');//"Be the First to Know";
14     $sub_title = $_helper->getConfig('porto_settings/footer/footer_newsletter_text');//"Get all the latest information on Events,<br>Sales and Offers. Sign up for newsletter today."; 14     $sub_title = $_helper->getConfig('porto_settings/footer/footer_newsletter_text');//"Get all the latest information on Events,<br>Sales and Offers. Sign up for newsletter today.";
15 ?> 15 ?>
16 <div class="block newsletter"> 16 <div class="block newsletter">
17     <div class="block-title"><strong><?php echo __($title); ?></strong></div> 17     <div class="block-title"><strong><?php echo __($title); ?></strong></div>
18     <div class="content"> 18     <div class="content">
19         <p><?php echo __($sub_title); ?></p> 19         <p><?php echo __($sub_title); ?></p>
20         <label for="footer_newsletter"><?php echo __('Enter your email address') ?></label> 20         <label for="footer_newsletter"><?php echo __('Enter your email address') ?></label>
21         <form class="form subscribe" 21         <form class="form subscribe"
22             novalidate 22             novalidate
23             action="<?php echo $block->getFormActionUrl() ?>" 23             action="<?php echo $block->getFormActionUrl() ?>"
24             method="post" 24             method="post"
25             data-mage-init='{"validation": {"errorClass": "mage-error"}}' 25             data-mage-init='{"validation": {"errorClass": "mage-error"}}'
26             id="newsletter-validate-detail"> 26             id="newsletter-validate-detail">
27             <div class="field newsletter"> 27             <div class="field newsletter">
28                 <label class="label" for="footer_newsletter"><span><?php echo __('Sign Up for Our Newsletter:') ?></span></label> 28                 <label class="label" for="footer_newsletter"><span><?php echo __('Sign Up for Our Newsletter:') ?></span></label>
29                 <div class="control"> 29                 <div class="control">
30                     <input name="email" type="email" id="footer_newsletter" 30                     <input name="email" type="email" id="footer_newsletter"
31                                 data-validate="{required:true, 'validate-email':true}"/> 31                                 data-validate="{required:true, 'validate-email':true}"/>
32                 </div> 32                 </div>
33             </div> 33             </div>
34             <div class="actions"> 34             <div class="actions">
35                 <button class="action subscribe primary" title="<?php echo __('Subscribe') ?>" type="submit"> 35                 <button class="action subscribe primary" title="<?php echo __('Subscribe') ?>" type="submit">
36                     <span><?php echo __('Subscribe') ?></span> 36                     <span><?php echo __('Subscribe') ?></span>
37                 </button> 37                 </button>
38             </div> 38             </div>
39         </form> 39         </form>
40     </div> 40     </div>
41 </div> 41 </div>